home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscTeePalette / _MiscDistributorConnection.h next >
Encoding:
C/C++ Source or Header  |  1994-10-24  |  939 b   |  38 lines

  1. //
  2. //    _MiscDistributorConnection.h -- A helper for MiscDistributor.
  3. //
  4. //        Written by Don Yacktman.  Copyright 1994 by Don Yacktman.
  5. //                Version 1.0  All rights reserved.
  6. //
  7. //        This notice may not be removed from this source code.
  8. //
  9. //    This object is included in the MiscKit by permission from the author
  10. //    and its use is governed by the MiscKit license, found in the file
  11. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  12. //    for a list of all applicable permissions and restrictions.
  13. //    
  14.  
  15. #import <objc/objc.h>
  16.  
  17. #ifdef INSUBPROJ
  18. #import "MiscDistributor.h"
  19. #else
  20. #import "MiscDistributor.subproj/MiscDistributor.h"
  21. #endif
  22.  
  23. @interface _MiscDistributorConnection:Object
  24. {
  25.     char *connectionName;
  26.     MiscDCDirection direction;
  27.     id selObject;
  28. }
  29.  
  30. - init;
  31. - free;
  32. - (const char *)connectionName;
  33. - setConnectionName:(const char *)aString;
  34. - (MiscDCDirection)direction;
  35. - setDirection:(MiscDCDirection)aDirection;
  36.  
  37. @end
  38.